home *** CD-ROM | disk | FTP | other *** search
- /***
- * CDefPushButton_v002.cp
- *
- * Handle a push button.
- * © 1994-96 Francesco Cadili.
- *
- ****/
- #ifndef __CDefPushButton__
- #define __CDefPushButton__
- #ifndef __CPushButton__
- #include "CPushButton_v002.h"
- #endif
-
- class CDefPushButton: public CPushButton
- {
- public:
- short inputField; // the field associatet to the default button
-
- /****
- * Procedura: "drawDefault()"
- *
- * Nota (viene usato il valore massimo e minimo per stabilire se il bottone
- * è abilitato)
- *
- * Par INPUT: 'theDialog' il puntatore al dialog.
- * 'itemButton' il numero di item del bottone.
- * Val OUTPUT: true se tutto ok, false altrimenti.
- *
- ****/
- Boolean CDefPushButton::drawDefault(void);
-
- /****
- * Procedura: "InvalDefaultButton()"
- *
- * Nota (viene usato il valore massimo e minimo per stabilire se il bottone
- * è abilitato)
- *
- * Par INPUT: 'theDialog' il puntatore al dialog.
- * 'itemButton' il numero di item del bottone.
- * Val OUTPUT: true se tutto ok, false altrimenti.
- *
- *****/
- Boolean CDefPushButton::InvalDefaultButton(void);
- };
- #endif